home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
texted1a
/
frmoptio.frm
(
.txt
)
< prev
next >
Wrap
Visual Basic Form
|
1999-09-18
|
1KB
|
49 lines
VERSION 5.00
Begin VB.Form frmOptions
Caption = "Text Editor - Options"
ClientHeight = 1950
ClientLeft = 60
ClientTop = 345
ClientWidth = 3810
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 1950
ScaleWidth = 3810
Begin VB.CommandButton cmdCancel
Cancel = -1 'True
Caption = "&Cancel"
Height = 255
Left = 2760
TabIndex = 2
Top = 1680
Width = 975
End
Begin VB.CommandButton cmdOk
Caption = "&Ok"
Height = 255
Left = 120
TabIndex = 1
Top = 1680
Width = 1095
End
Begin VB.CheckBox chkToolbar
Caption = "Toolbar"
Height = 255
Left = 120
TabIndex = 0
Top = 240
Width = 975
End
Attribute VB_Name = "frmOptions"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdCancel_Click()
Me.Hide
End Sub
Private Sub Form_Load()
End Sub